home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE23 / CLINIC / CALLERU.DFM / CALLERU.txt
Text File  |  1997-04-17  |  783b  |  41 lines

  1. object Form1: TForm1
  2.   Left = 200
  3.   Top = 99
  4.   Width = 435
  5.   Height = 300
  6.   Caption = 'Form1'
  7.   Font.Color = clWindowText
  8.   Font.Height = -11
  9.   Font.Name = 'MS Sans Serif'
  10.   Font.Style = []
  11.   PixelsPerInch = 96
  12.   TextHeight = 13
  13.   object Button1: TButton
  14.     Left = 8
  15.     Top = 64
  16.     Width = 193
  17.     Height = 33
  18.     Caption = '&Sample button with event handler'
  19.     TabOrder = 0
  20.     OnClick = Button1Click
  21.   end
  22.   object Button2: TButton
  23.     Left = 8
  24.     Top = 104
  25.     Width = 193
  26.     Height = 33
  27.     Caption = '&Invoke one published routine'
  28.     TabOrder = 1
  29.     OnClick = Button2Click
  30.   end
  31.   object Button3: TButton
  32.     Left = 8
  33.     Top = 144
  34.     Width = 193
  35.     Height = 33
  36.     Caption = 'I&nvoke another published routine'
  37.     TabOrder = 2
  38.     OnClick = Button3Click
  39.   end
  40. end
  41.